home *** CD-ROM | disk | FTP | other *** search
/ Horoscope Companion: Gemini / Horoscope Companion: Gemini.iso / pc / gemini / cab.dir / Internal_4.ls < prev    next >
Encoding:
Text File  |  1996-10-08  |  865 b   |  19 lines

  1. on mouseDown
  2.   global gSelectedAnswer, gAnswerTextSpriteNum
  3.   cursor(4)
  4.   set questionText to the number of member the memberNum of sprite the clickOn of castLib the castLibNum of sprite the clickOn
  5.   set selQuestion to word 1 of line the mouseLine of field questionText
  6.   if the mouseLine <> gSelectedAnswer then
  7.     if line the mouseLine of field questionText <> EMPTY then
  8.       set gSelectedAnswer to the mouseLine
  9.       set n1 to 2
  10.       set n2 to the number of chars in selQuestion - 1
  11.       set whichAnswerText to char n1 to n2 of selQuestion
  12.       set whichAnswerText to the number of member ("ABB" & whichAnswerText && "answer text") of castLib the castLibNum of sprite gAnswerTextSpriteNum
  13.       set the memberNum of sprite gAnswerTextSpriteNum to the number of member whichAnswerText
  14.       updateStage()
  15.     end if
  16.   end if
  17.   hFingerPointingCursor()
  18. end
  19.